programs
1)client.c
2)server.c

1)client.c:
    client.c is gtk program. It handles all the windows required in project like login window etc.It connects to the server. Whenever we click the submit or ok or search etc buttons then it connect the server. It send details to server.From server it receives the result.

2)server.c
   In this program we create database,user,password and create all tables required in project.When it receive details from the client it checks in database and it sends the particular information to client. 
For example
  client enter loginID and password in login-page and it sends into server. server check in database if they exist return "success" otherwise return "fail" message.

project specifications
1)required installed "mysql" database
2)username:cs3002_user
3)password:cs3002_password
4)database:cs3002_database
5)tables:
   1)login_details: contains loginID and password
   2)user_details: contains username,Email-id,loginID,password and organization 
   3)file_details: contains loginID, file names
